home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / util / boot / kesc.lha / kesc1_273 / install / Install < prev    next >
Encoding:
Text File  |  1996-08-26  |  1.0 KB  |  56 lines

  1. ;***** Kit Early Startup Control Installation Script
  2.  
  3. (transcript "Installing Kit Early Startup Control...")
  4. (set @default-dest "SYS:")
  5.  
  6. ;***** Introduction
  7. (complete 0)
  8.  
  9. (set destination "s:Startups")
  10.  
  11. (if (= (exists destination) 2)
  12. (message
  13.     "The \"S:Startups\" directory in already existing."
  14. )
  15. )
  16.  
  17. (makedir destination
  18.     (help @makedir-help)
  19.     (infos)
  20. )
  21.  
  22. (copyfiles
  23.     (prompt "Duplicating Startup_Sequence...\nto s:startups/Startup_normal ")
  24.     (source "S:Startup-Sequence")
  25.     (dest destination)
  26.     (help @copyfiles-help)
  27. )
  28.  
  29. (run ("rename S:Startups/Startup-Sequence S:Startups/Startup_normal"))
  30. (run ("rename S:Startup-Sequence S:Kesc-Startup"))
  31.  
  32. (copyfiles
  33.     (prompt "Replacing Startup-Sequence...")
  34.     (source "/s/Startup-Sequence")
  35.     (dest "S:")
  36. )
  37.  
  38. (copyfiles
  39.     (prompt "copying the defaults prefs...")
  40.     (source "/s/kesc.prefs")
  41.     (dest "s:")
  42. )
  43.  
  44. (complete 40)
  45.  
  46. (copyfiles
  47.     (prompt "Installing command in C:")
  48.     (source "/Kesc")
  49.     (dest "C:")
  50. )
  51.  
  52. ;***** Finished
  53. (complete 100)
  54.  
  55. (exit "Please reboot your computer before trying to launch KESC. (LMB)")
  56.